+Sat Feb 28 01:39:01 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+ switching back to non-gridded mode. (#135169)
+
+Fri Feb 27 22:29:46 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
Fri Feb 27 18:52:19 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
For now, use gtk_file_system_insert_bookmark() with -1 for the
position. DnD will come next.
+>>>>>>> 1.5045
Fri Feb 27 21:42:28 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_relayout):
+Sat Feb 28 01:39:01 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+ switching back to non-gridded mode. (#135169)
+
+Fri Feb 27 22:29:46 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
Fri Feb 27 18:52:19 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
For now, use gtk_file_system_insert_bookmark() with -1 for the
position. DnD will come next.
+>>>>>>> 1.5045
Fri Feb 27 21:42:28 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_relayout):
+Sat Feb 28 01:39:01 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+ switching back to non-gridded mode. (#135169)
+
+Fri Feb 27 22:29:46 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
Fri Feb 27 18:52:19 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
For now, use gtk_file_system_insert_bookmark() with -1 for the
position. DnD will come next.
+>>>>>>> 1.5045
Fri Feb 27 21:42:28 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_relayout):
+Sat Feb 28 01:39:01 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+ switching back to non-gridded mode. (#135169)
+
+Fri Feb 27 22:29:46 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
Fri Feb 27 18:52:19 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
For now, use gtk_file_system_insert_bookmark() with -1 for the
position. DnD will come next.
+>>>>>>> 1.5045
Fri Feb 27 21:42:28 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_relayout):
+Sat Feb 28 01:39:01 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkcombobox.c (gtk_combo_box_set_wrap_width): Support
+ switching back to non-gridded mode. (#135169)
+
+Fri Feb 27 22:29:46 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtkwidget.c (gtk_widget_can_activate_accel): Add "Since: 2.4".
+
Fri Feb 27 18:52:19 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_style_set):
For now, use gtk_file_system_insert_bookmark() with -1 for the
position. DnD will come next.
+>>>>>>> 1.5045
Fri Feb 27 21:42:28 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_relayout):
gint width)
{
g_return_if_fail (GTK_IS_COMBO_BOX (combo_box));
- g_return_if_fail (width > 0);
+ g_return_if_fail (width >= 0);
if (width != combo_box->priv->wrap_width)
{
combo_box->priv->wrap_width = width;
gtk_combo_box_relayout (combo_box);
+ gtk_combo_box_style_set (combo_box, NULL, NULL);
g_object_notify (G_OBJECT (combo_box), "wrap_width");
}
* @combo_box: A #GtkComboBox
* @iter: The uninitialized #GtkTreeIter.
*
- * Set @iter to point to the current active item, if it exists.
+ * Sets @iter to point to the current active item, if it exists.
*
* Return value: %TRUE, if @iter was set
*
* Determines whether an accelerator that activates the signal
* identified by @signal_id can currently be activated.
* This is done by emitting the GtkWidget::can-activate-accel
- * signal on @widget; if the signal isn't overriden by a
+ * signal on @widget; if the signal isn't overridden by a
* handler or in a derived widget, then the default check is
* that the widget must be sensitive, and the widget and all
- * its parents mapped.
+ * its ancestors mapped.
*
* Return value: %TRUE if the accelerator can be activated.
+ *
+ * Since: 2.4
**/
gboolean
gtk_widget_can_activate_accel (GtkWidget *widget,